net/http.http2ClientConn.goAway (field)

13 uses

	net/http (current package)
		h2_bundle.go#L7629: 	goAway           *http2GoAwayFrame             // if non-nil, the GoAwayFrame we received
		h2_bundle.go#L8202: 	old := cc.goAway
		h2_bundle.go#L8203: 	cc.goAway = f
		h2_bundle.go#L8210: 		cc.goAway.ErrCode = old.ErrCode
		h2_bundle.go#L8220: 		if streamID == 1 && cc.goAway.ErrCode != http2ErrCodeNo {
		h2_bundle.go#L8224: 			cs.abortStreamLocked(fmt.Errorf("http2: Transport received GOAWAY from server ErrCode:%v", cc.goAway.ErrCode))
		h2_bundle.go#L8303: 		Closing:              cc.closing || cc.singleUse || cc.doNotReuse || cc.goAway != nil,
		h2_bundle.go#L8362: 	return cc.goAway == nil &&
		h2_bundle.go#L8954: 	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
		h2_bundle.go#L9397: 	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
		h2_bundle.go#L9462: 	if cc.goAway != nil && http2isEOFOrNetReadError(err) {
		h2_bundle.go#L9464: 			LastStreamID: cc.goAway.LastStreamID,
		h2_bundle.go#L9465: 			ErrCode:      cc.goAway.ErrCode,